26f17744a2fadb54f048ebcfa2c4aef525847abd,platform/lang-impl/src/com/intellij/execution/actions/StopAction.java,StopAction,actionPerformed,#AnActionEvent#,93
Before Change
}).setRequestFocus(true).createPopup();
assert project != null;
popup.showCenteredInCurrentWindow(project);
}
else if (activeProcessHandler != null) {
stopProcess(activeProcessHandler);
After Change
})
.setRequestFocus(true)
.createPopup();
if (project == null) {
popup.showInBestPositionFor(dataContext);
}
else {
popup.showCenteredInCurrentWindow(project);
}
}
else if (activeProcessHandler != null) {